home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 176-200 / disk_183 / mklib / edlib / stoupper.c < prev    next >
C/C++ Source or Header  |  1992-05-06  |  289b  |  18 lines

  1. /* edlib  version 1.0 of 04/08/88 */
  2. /*
  3.     string to upper changes all lower case letters in a string to upper
  4.     case.
  5. */
  6. #include <ctype.h>
  7.  
  8. char *stoupper(str)
  9. char *str;
  10. {
  11.     char *temp = str;
  12.  
  13.     for ( ; *temp ; temp++ )
  14.         *temp = (char) toupper(*temp);
  15.  
  16.     return(str);
  17. }
  18.